SetGeolocationOverrideRequest

data class SetGeolocationOverrideRequest(latitude: Double?, longitude: Double?, accuracy: Double?)

Represents request frame that can be used with Page#setGeolocationOverride operation call.

Overrides the Geolocation Position or Error. Omitting any of the parameters emulates position unavailable.

See also

Constructors

SetGeolocationOverrideRequest
Link copied to clipboard
fun SetGeolocationOverrideRequest(latitude: Double? = null, longitude: Double? = null, accuracy: Double? = null)

Properties

accuracy
Link copied to clipboard
val accuracy: Double? = null
Mock accuracy
latitude
Link copied to clipboard
val latitude: Double? = null
Mock latitude
longitude
Link copied to clipboard
val longitude: Double? = null
Mock longitude

Sources

jvm source
Link copied to clipboard